home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 1
/
Wayzata's Best of Shareware for PC-Windows - Release 1 - Wayzata Technology (1993).iso
/
mac
/
DOS
/
EDITORS
/
LTRHEAD2
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-10-01
|
1KB
|
40 lines
@REM INSTALL.BAT; JLS 8/92
@echo off
cls
if "%1"=="" goto info
ECHO Files for THE LETTERHEAD KIT for WP/DOS will now be copied:
ECHO Macros will be copied to %1
ECHO A complete set of all the forms, macros, samples, instructions,
ECHO and graphics will be copied to the new directory C:\LTRHEAD.
ECHO You will need about 360K of free space for now, and the manual
ECHO will tell you which files are absolutely needed (about 110K).
ECHO ...
ECHO Press any key to proceed with installation, or Control-C to stop now.
pause > nul
copy *.wpm %1
md c:\ltrhead
copy *.* c:\ltrhead\*.*
ECHO Done...
ECHO If you haven't already,
ECHO type PRINTDOC for instructions on printing the manual.
goto end
:info
ECHO Start INSTALL.BAT with the drive path to the macro directory
ECHO used by WordPerfect for DOS, usually c:\wp51\wpm.
ECHO ...
ECHO If you don't know where WP keeps your macros, look in the Setup menu,
ECHO choose Location of Files, and write down the entry under
ECHO Keyboard/Macro Files, and enter it from the DOS prompt.
ECHO ...
ECHO For example:
ECHO INSTALL d:\wp51\wpm
ECHO (Copies macros to d:\wp51\wpm.)
ECHO or:
ECHO INSTALL c:\wp51
ECHO (Copies macros to c:\wp51.)
ECHO ...
ECHO The Letterhead Kit should be installed in the directory c:\ltrhead,
ECHO and this batch file will create that directory for you. If you must
ECHO use a different drive, follow the manual installation instructions
ECHO in the file LTRHEAD2.DOC.
:end